home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 19 code / Adding GX Printing to QD Apps / Simple Sample ƒ / Prefix.mw68k.h < prev    next >
Encoding:
Text File  |  1994-08-23  |  572 b   |  17 lines  |  [TEXT/MMCC]

  1.  
  2. // The following two typedef's are to work around a bug in the ETO #15
  3. // Universal headers -- the headers only typedef float_t and double_t
  4. // for "applec" and "powerc".  When this is eventually fixed, these
  5. // lines generate "redefined type" errors.
  6.  
  7. #ifndef powerc
  8.     typedef long double float_t;
  9.     typedef long double double_t;
  10.  
  11.     // The following is required if using Metrowerks 68K (CW4).
  12.     // Otherwise, MetroWerks 68K expects (and uses what it thinks are)
  13.     // A0 result values instead of D0 ones.
  14.  
  15.     #pragma pointers_in_D0        //    Required for c-style toolbox glue.
  16. #endif
  17.